#!/bin/sh

here="${0%/*}"
cmd=Wish
ulimit -S -n 1024
i=0
while [ $i -eq 0 -o -f "$here/../../.restart" ]
do
	"$here/$cmd" $@
	i=`expr $i + 1`
done
